From a9e94e0692ebe1e1fa4204be4a038726e8a4940d Mon Sep 17 00:00:00 2001 From: "awilliam@xenbuild2.aw" Date: Tue, 27 Mar 2007 09:07:51 -0600 Subject: [PATCH] [IA64] Remove debugger calls from panic_domain() These hang when compiled with crash_debug=y Signed-off-by: Akio Takebe --- xen/arch/ia64/xen/xenmisc.c | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/xen/arch/ia64/xen/xenmisc.c b/xen/arch/ia64/xen/xenmisc.c index db4d14975b..450ec45079 100644 --- a/xen/arch/ia64/xen/xenmisc.c +++ b/xen/arch/ia64/xen/xenmisc.c @@ -166,11 +166,7 @@ void panic_domain(struct pt_regs *regs, const char *fmt, ...) (void)vsnprintf(buf, sizeof(buf), fmt, args); va_end(args); printk(buf); - if (regs) show_registers(regs); - if (regs) { - debugger_trap_fatal(0 /* don't care */, regs); - } else { - debugger_trap_immediate(); - } + if (regs) + show_registers(regs); domain_crash_synchronous (); } -- 2.30.2